home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000013_news@newsmaster….columbia.edu _Thu Jul 3 14:40:16 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA00145
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 3 Jul 1997 14:40:16 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA13453
  7.     for kermit.misc@watsun; Thu, 3 Jul 1997 14:40:15 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: using telnet and MS-Kermit
  12. Date: 3 Jul 1997 18:40:13 GMT
  13. Organization: Columbia University
  14. Lines: 21
  15. Message-ID: <5pgrmd$d4b$1@newsmaster.cc.columbia.edu>
  16. References: <31dabc20.0@dcez3.nicom.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7257
  19.  
  20. In article <31dabc20.0@dcez3.nicom.com>,
  21. Chris Witzgall <witzgall@tidalwave.net> wrote:
  22. : Is there a way to use telnet to connect a win95 or win3.x pc using
  23. : MS-Kermit scripts? I know it can be done in K-95 using the set host
  24. : command, but what about the MS-Kermit version?
  25. If you can make a Telnet connection with MS-DOS Kermit by hand, then
  26. you can do it in a script:
  27.  
  28.   ; Give TCP/IP setup commands here
  29.   set port tcp xyzcorp.com
  30.   pause 0
  31.   if fail stop 1 Can't make connection
  32.  
  33. This is equivalent to the following in C-Kermit or K95:
  34.  
  35.   set network type tcp/ip
  36.   set set host xyzcorp.com
  37.   if fail stop 1 Can't make connection
  38.  
  39. - Frank